home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
c
/
cc02.zip
/
CCSTRIP.C
< prev
next >
Wrap
Text File
|
1985-08-28
|
233b
|
14 lines
/* ccstrip: strip non-graphic characters */
#include <stdio.h>
main()
{
int c;
while ((c = getchar()) != EOF)
if ((c >= ' ' && c < '\177') || c == '\t' || c == '\n')
putchar(c);
exit(0);
}